February 17, 2022
파일이 업로드 하던중에 용량문제로 nginx에서 413 코드가 나왔습니다.
기존의 nginx 설정하지 않으면 업로드 용량을 1MB로 잡습니다.
nginx설정으로 들어가서 수정해봅시다.
cd /etc/nginx
sudo vi nginx.conf
nginx.conf
http {
... nginx 세팅 어쩌구...
## Set Client upload Size
client_max_body_size 100M;
}
client_max_body_size
: 업로드 용량을 결정할 수 있습니다. (없으면 직접 추가할 것)이후 nginx를 다시 실행합니다.
sudo service nginx restart